home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 03-05.BAS < prev    next >
BASIC Source File  |  1991-06-05  |  331b  |  23 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. IF FGegacheck < 2 THEN
  6.    PRINT "This program requires an Enhanced Graphics Adapter"
  7.    PRINT "(EGA) and an Enhanced Color Display (ECD)."
  8.    STOP
  9. END IF
  10.  
  11. Mode = FGgetmode
  12. FGsetmode 16
  13.  
  14. FGsetcolor 15
  15. FGtext "Hello, world.", 13
  16.  
  17. FGwaitkey
  18.  
  19. FGsetmode Mode
  20. FGreset
  21.  
  22. END
  23.